{% extends 'base.html' %} {% block title %}{{ service.name }} - Service Details{% endblock %} {% block content %}

{{ service.name }}

Service Information

Duration: {{ service.duration|time:"H:i" }} hours

Price: ${{ service.price|floatformat:2 }}

Active: {% if service.is_active %}Yes{% else %}No{% endif %}

Description

{{ service.description|default:"No description provided." }}

Upcoming Appointments
{% if appointments %}
{% for appointment in appointments %} {% endfor %}
Date & Time Client Staff Status
{{ appointment.start_time|date:"M d, Y H:i" }} {{ appointment.client.get_full_name|default:appointment.client.username }} {{ appointment.staff.user.get_full_name|default:appointment.staff.user.username }} {{ appointment.get_status_display }}
{% else %}

No upcoming appointments for this service.

{% endif %}
{% endblock %} {% block extra_css %} {% endblock %}